home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / pdftops / goo / h / cover next >
Text File  |  1996-05-23  |  535b  |  39 lines

  1. /*
  2.  * cover.h
  3.  *
  4.  * Simple code coverage checking.
  5.  *
  6.  * Copyright 1996 Derek B. Noonburg
  7.  */
  8.  
  9. #ifndef COVER_H
  10. #define COVER_H
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. #ifdef COVER
  17.  
  18. #define coverInit(hashSize1) doCoverInit(hashSize1)
  19. #define cover(name) doCover(name)
  20. #define coverDump(f) doCoverDump(f)
  21.  
  22. extern void doCoverInit(int hashSize1);
  23. extern void doCover(char *name);
  24. extern void doCoverDump(FILE *f);
  25.  
  26. #else
  27.  
  28. #define coverInit(hashSize1)
  29. #define cover(name)
  30. #define coverDump(f)
  31.  
  32. #endif
  33.  
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37.  
  38. #endif
  39.